home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.004 / xemacs-1 / xemacs-19.13 / src / m / pfa50.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-04  |  2.1 KB  |  82 lines

  1. /* Machine description file for PFU A-series.
  2.    Copyright (C) 1988 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU Emacs is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU Emacs; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. /* Synched up with: FSF 19.29. */
  21.  
  22. /* Say this machine is a 68000 */
  23.  
  24. #define m68000
  25. #define mc68000 1
  26.  
  27. /* Use type int rather than a union, to represent Lisp_Object */
  28.  
  29. #define NO_UNION_TYPE
  30.  
  31. /* XINT must explicitly sign-extend */
  32.  
  33. #define EXPLICIT_SIGN_EXTEND
  34.  
  35. /* Define NO_REMAP if memory segmentation makes it not work well
  36.    to change the boundary between the text section and data section
  37.    when Emacs is dumped.  If you define this, the preloaded Lisp
  38.    code will not be sharable; but that's better than failing completely.  */
  39.  
  40. #define NO_REMAP
  41.  
  42. /* Define TEXT_START_ADDR if your linker don't set execute point to _start.
  43.    If it needed, temacs always CORE-DUMP.    */
  44.  
  45. #define TEXT_START_ADDR __start
  46.  
  47. /* Define START_FILES if your machine used _start.
  48.  */
  49.  
  50. #define START_FILES crt0.o
  51.  
  52. /* Define LD_SWITCH_MACHINE if your linker needs it.
  53.  */
  54.  
  55. #define LD_SWITCH_MACHINE -e __start
  56.  
  57. #if    pfa50 || pfa70
  58.  
  59. /* On A-50/60/70/80, data space has high order byte use. */
  60. #define VALBITS 26
  61. #define VALMASK (((1<<VALBITS) - 1) | 0x60000000)
  62. #define XTYPE(a) ((enum Lisp_Type) (((a) >> VALBITS) & GCTYPEMASK))
  63.  
  64. #endif /* pfa50, pfa70 */
  65.  
  66. /* SX/A has alloca in the PW library.  */
  67.  
  68. #define LIB_STANDARD -lPW -lc
  69. #define HAVE_ALLOCA
  70.  
  71. /* SX/A uses terminfo and lib/curses   */
  72.  
  73. #define TERMINFO
  74.  
  75. #define HAVE_PTYS
  76.  
  77. /* SX/A use SystemV style getdents/readdir. */
  78.  
  79. #define NO_SIOCTL_H
  80.  
  81. #define BROKEN_SIGIO
  82.